home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / gcc-2.6.3-bin.lha / GNU / info / gcc.info-23 (.txt) < prev    next >
GNU Info File  |  1995-03-30  |  25KB  |  455 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.55 from the input
  2. file gcc.texi.
  3.    This file documents the use and the internals of the GNU compiler.
  4.    Published by the Free Software Foundation 675 Massachusetts Avenue
  5. Cambridge, MA 02139 USA
  6.    Copyright (C) 1988, 1989, 1992, 1993, 1994 Free Software Foundation,
  7.    Permission is granted to make and distribute verbatim copies of this
  8. manual provided the copyright notice and this permission notice are
  9. preserved on all copies.
  10.    Permission is granted to copy and distribute modified versions of
  11. this manual under the conditions for verbatim copying, provided also
  12. that the sections entitled "GNU General Public License," "Funding for
  13. Free Software," and "Protect Your Freedom--Fight `Look And Feel'" are
  14. included exactly as in the original, and provided that the entire
  15. resulting derived work is distributed under the terms of a permission
  16. notice identical to this one.
  17.    Permission is granted to copy and distribute translations of this
  18. manual into another language, under the above conditions for modified
  19. versions, except that the sections entitled "GNU General Public
  20. License," "Funding for Free Software," and "Protect Your Freedom--Fight
  21. `Look And Feel'", and this permission notice, may be included in
  22. translations approved by the Free Software Foundation instead of in the
  23. original English.
  24. File: gcc.info,  Node: Misc,  Prev: Cross-compilation,  Up: Target Macros
  25. Miscellaneous Parameters
  26. ========================
  27.    Here are several miscellaneous parameters.
  28. `PREDICATE_CODES'
  29.      Define this if you have defined special-purpose predicates in the
  30.      file `MACHINE.c'.  This macro is called within an initializer of an
  31.      array of structures.  The first field in the structure is the name
  32.      of a predicate and the second field is an array of rtl codes.  For
  33.      each predicate, list all rtl codes that can be in expressions
  34.      matched by the predicate.  The list should have a trailing comma.
  35.      Here is an example of two entries in the list for a typical RISC
  36.      machine:
  37.           #define PREDICATE_CODES \
  38.             {"gen_reg_rtx_operand", {SUBREG, REG}},  \
  39.             {"reg_or_short_cint_operand", {SUBREG, REG, CONST_INT}},
  40.      Defining this macro does not affect the generated code (however,
  41.      incorrect definitions that omit an rtl code that may be matched by
  42.      the predicate can cause the compiler to malfunction).  Instead, it
  43.      allows the table built by `genrecog' to be more compact and
  44.      efficient, thus speeding up the compiler.  The most important
  45.      predicates to include in the list specified by this macro are
  46.      thoses used in the most insn patterns.
  47. `CASE_VECTOR_MODE'
  48.      An alias for a machine mode name.  This is the machine mode that
  49.      elements of a jump-table should have.
  50. `CASE_VECTOR_PC_RELATIVE'
  51.      Define this macro if jump-tables should contain relative addresses.
  52. `CASE_DROPS_THROUGH'
  53.      Define this if control falls through a `case' insn when the index
  54.      value is out of range.  This means the specified default-label is
  55.      actually ignored by the `case' insn proper.
  56. `CASE_VALUES_THRESHOLD'
  57.      Define this to be the smallest number of different values for
  58.      which it is best to use a jump-table instead of a tree of
  59.      conditional branches.  The default is four for machines with a
  60.      `casesi' instruction and five otherwise.  This is best for most
  61.      machines.
  62. `WORD_REGISTER_OPERATIONS'
  63.      Define this macro if operations between registers with integral
  64.      mode smaller than a word are always performed on the entire
  65.      register.  Most RISC machines have this property and most CISC
  66.      machines do not.
  67. `LOAD_EXTEND_OP (MODE)'
  68.      Define this macro to be a C expression indicating when insns that
  69.      read memory in MODE, an integral mode narrower than a word, set the
  70.      bits outside of MODE to be either the sign-extension or the
  71.      zero-extension of the data read.  Return `SIGN_EXTEND' for values
  72.      of MODE for which the insn sign-extends, `ZERO_EXTEND' for which
  73.      it zero-extends, and `NIL' for other modes.
  74.      This macro is not called with MODE non-integral or with a width
  75.      greater than or equal to `BITS_PER_WORD', so you may return any
  76.      value in this case.  Do not define this macro if it would always
  77.      return `NIL'.  On machines where this macro is defined, you will
  78.      normally define it as the constant `SIGN_EXTEND' or `ZERO_EXTEND'.
  79. `IMPLICIT_FIX_EXPR'
  80.      An alias for a tree code that should be used by default for
  81.      conversion of floating point values to fixed point.  Normally,
  82.      `FIX_ROUND_EXPR' is used.
  83. `FIXUNS_TRUNC_LIKE_FIX_TRUNC'
  84.      Define this macro if the same instructions that convert a floating
  85.      point number to a signed fixed point number also convert validly
  86.      to an unsigned one.
  87. `EASY_DIV_EXPR'
  88.      An alias for a tree code that is the easiest kind of division to
  89.      compile code for in the general case.  It may be `TRUNC_DIV_EXPR',
  90.      `FLOOR_DIV_EXPR', `CEIL_DIV_EXPR' or `ROUND_DIV_EXPR'.  These four
  91.      division operators differ in how they round the result to an
  92.      integer.  `EASY_DIV_EXPR' is used when it is permissible to use
  93.      any of those kinds of division and the choice should be made on
  94.      the basis of efficiency.
  95. `MOVE_MAX'
  96.      The maximum number of bytes that a single instruction can move
  97.      quickly from memory to memory.
  98. `MAX_MOVE_MAX'
  99.      The maximum number of bytes that a single instruction can move
  100.      quickly from memory to memory.  If this is undefined, the default
  101.      is `MOVE_MAX'.  Otherwise, it is the constant value that is the
  102.      largest value that `MOVE_MAX' can have at run-time.
  103. `SHIFT_COUNT_TRUNCATED'
  104.      A C expression that is nonzero if on this machine the number of
  105.      bits actually used for the count of a shift operation is equal to
  106.      the number of bits needed to represent the size of the object
  107.      being shifted.  When this macro is non-zero, the compiler will
  108.      assume that it is safe to omit a sign-extend, zero-extend, and
  109.      certain bitwise `and' instructions that truncates the count of a
  110.      shift operation.  On machines that have instructions that act on
  111.      bitfields at variable positions, which may include `bit test'
  112.      instructions, a nonzero `SHIFT_COUNT_TRUNCATED' also enables
  113.      deletion of truncations of the values that serve as arguments to
  114.      bitfield instructions.
  115.      If both types of instructions truncate the count (for shifts) and
  116.      position (for bitfield operations), or if no variable-position
  117.      bitfield instructions exist, you should define this macro.
  118.      However, on some machines, such as the 80386 and the 680x0,
  119.      truncation only applies to shift operations and not the (real or
  120.      pretended) bitfield operations.  Define `SHIFT_COUNT_TRUNCATED' to
  121.      be zero on such machines.  Instead, add patterns to the `md' file
  122.      that include the implied truncation of the shift instructions.
  123.      You need not define this macro if it would always have the value
  124.      of zero.
  125. `TRULY_NOOP_TRUNCATION (OUTPREC, INPREC)'
  126.      A C expression which is nonzero if on this machine it is safe to
  127.      "convert" an integer of INPREC bits to one of OUTPREC bits (where
  128.      OUTPREC is smaller than INPREC) by merely operating on it as if it
  129.      had only OUTPREC bits.
  130.      On many machines, this expression can be 1.
  131.      When `TRULY_NOOP_TRUNCATION' returns 1 for a pair of sizes for
  132.      modes for which `MODES_TIEABLE_P' is 0, suboptimal code can result.
  133.      If this is the case, making `TRULY_NOOP_TRUNCATION' return 0 in
  134.      such cases may improve things.
  135. `STORE_FLAG_VALUE'
  136.      A C expression describing the value returned by a comparison
  137.      operator with an integral mode and stored by a store-flag
  138.      instruction (`sCOND') when the condition is true.  This
  139.      description must apply to *all* the `sCOND' patterns and all the
  140.      comparison operators whose results have a `MODE_INT' mode.
  141.      A value of 1 or -1 means that the instruction implementing the
  142.      comparison operator returns exactly 1 or -1 when the comparison is
  143.      true and 0 when the comparison is false.  Otherwise, the value
  144.      indicates which bits of the result are guaranteed to be 1 when the
  145.      comparison is true.  This value is interpreted in the mode of the
  146.      comparison operation, which is given by the mode of the first
  147.      operand in the `sCOND' pattern.  Either the low bit or the sign
  148.      bit of `STORE_FLAG_VALUE' be on.  Presently, only those bits are
  149.      used by the compiler.
  150.      If `STORE_FLAG_VALUE' is neither 1 or -1, the compiler will
  151.      generate code that depends only on the specified bits.  It can also
  152.      replace comparison operators with equivalent operations if they
  153.      cause the required bits to be set, even if the remaining bits are
  154.      undefined.  For example, on a machine whose comparison operators
  155.      return an `SImode' value and where `STORE_FLAG_VALUE' is defined as
  156.      `0x80000000', saying that just the sign bit is relevant, the
  157.      expression
  158.           (ne:SI (and:SI X (const_int POWER-OF-2)) (const_int 0))
  159.      can be converted to
  160.           (ashift:SI X (const_int N))
  161.      where N is the appropriate shift count to move the bit being
  162.      tested into the sign bit.
  163.      There is no way to describe a machine that always sets the
  164.      low-order bit for a true value, but does not guarantee the value
  165.      of any other bits, but we do not know of any machine that has such
  166.      an instruction.  If you are trying to port GNU CC to such a
  167.      machine, include an instruction to perform a logical-and of the
  168.      result with 1 in the pattern for the comparison operators and let
  169.      us know (*note How to Report Bugs: Bug Reporting.).
  170.      Often, a machine will have multiple instructions that obtain a
  171.      value from a comparison (or the condition codes).  Here are rules
  172.      to guide the choice of value for `STORE_FLAG_VALUE', and hence the
  173.      instructions to be used:
  174.         * Use the shortest sequence that yields a valid definition for
  175.           `STORE_FLAG_VALUE'.  It is more efficient for the compiler to
  176.           "normalize" the value (convert it to, e.g., 1 or 0) than for
  177.           the comparison operators to do so because there may be
  178.           opportunities to combine the normalization with other
  179.           operations.
  180.         * For equal-length sequences, use a value of 1 or -1, with -1
  181.           being slightly preferred on machines with expensive jumps and
  182.           1 preferred on other machines.
  183.         * As a second choice, choose a value of `0x80000001' if
  184.           instructions exist that set both the sign and low-order bits
  185.           but do not define the others.
  186.         * Otherwise, use a value of `0x80000000'.
  187.      Many machines can produce both the value chosen for
  188.      `STORE_FLAG_VALUE' and its negation in the same number of
  189.      instructions.  On those machines, you should also define a pattern
  190.      for those cases, e.g., one matching
  191.           (set A (neg:M (ne:M B C)))
  192.      Some machines can also perform `and' or `plus' operations on
  193.      condition code values with less instructions than the corresponding
  194.      `sCOND' insn followed by `and' or `plus'.  On those machines,
  195.      define the appropriate patterns.  Use the names `incscc' and
  196.      `decscc', respectively, for the the patterns which perform `plus'
  197.      or `minus' operations on condition code values.  See `rs6000.md'
  198.      for some examples.  The GNU Superoptizer can be used to find such
  199.      instruction sequences on other machines.
  200.      You need not define `STORE_FLAG_VALUE' if the machine has no
  201.      store-flag instructions.
  202. `FLOAT_STORE_FLAG_VALUE'
  203.      A C expression that gives a non-zero floating point value that is
  204.      returned when comparison operators with floating-point results are
  205.      true.  Define this macro on machine that have comparison
  206.      operations that return floating-point values.  If there are no
  207.      such operations, do not define this macro.
  208. `Pmode'
  209.      An alias for the machine mode for pointers.  Normally the
  210.      definition can be
  211.           #define Pmode SImode
  212. `FUNCTION_MODE'
  213.      An alias for the machine mode used for memory references to
  214.      functions being called, in `call' RTL expressions.  On most
  215.      machines this should be `QImode'.
  216. `INTEGRATE_THRESHOLD (DECL)'
  217.      A C expression for the maximum number of instructions above which
  218.      the function DECL should not be inlined.  DECL is a
  219.      `FUNCTION_DECL' node.
  220.      The default definition of this macro is 64 plus 8 times the number
  221.      of arguments that the function accepts.  Some people think a larger
  222.      threshold should be used on RISC machines.
  223. `SCCS_DIRECTIVE'
  224.      Define this if the preprocessor should ignore `#sccs' directives
  225.      and print no error message.
  226. `NO_IMPLICIT_EXTERN_C'
  227.      Define this macro if the system header files support C++ as well
  228.      as C.  This macro inhibits the usual method of using system header
  229.      files in C++, which is to pretend that the file's contents are
  230.      enclosed in `extern "C" {...}'.
  231. `HANDLE_PRAGMA (STREAM)'
  232.      Define this macro if you want to implement any pragmas.  If
  233.      defined, it should be a C statement to be executed when `#pragma'
  234.      is seen.  The argument STREAM is the stdio input stream from which
  235.      the source text can be read.
  236.      It is generally a bad idea to implement new uses of `#pragma'.  The
  237.      only reason to define this macro is for compatibility with other
  238.      compilers that do support `#pragma' for the sake of any user
  239.      programs which already use it.
  240. `VALID_MACHINE_ATTRIBUTE (TYPE, ATTRIBUTES, IDENTIFIER)'
  241.      Define this macro if you want to support machine specific
  242.      attributes for types.  If defined, it should be a C statement
  243.      whose value is nonzero if IDENTIFIER is an attribute that is valid
  244.      for TYPE.  The attributes in ATTRIBUTES have previously been
  245.      assigned to TYPE.
  246. `COMP_TYPE_ATTRIBUTES (TYPE1, TYPE2)'
  247.      Define this macro if type attributes must be checked for
  248.      compatibility.  If defined, it should be a C statement that
  249.      returns zero if the attributes on TYPE1 and TYPE2 are
  250.      incompatible, one if they are compatible, and two if they are
  251.      nearly compatible (which causes a warning to be generated).
  252. `SET_DEFAULT_TYPE_ATTRIBUTES (TYPE)'
  253.      Define this macro if you want to give the newly defined TYPE some
  254.      default attributes.
  255. `DOLLARS_IN_IDENTIFIERS'
  256.      Define this macro to control use of the character `$' in identifier
  257.      names.  The value should be 0, 1, or 2.  0 means `$' is not allowed
  258.      by default; 1 means it is allowed by default if `-traditional' is
  259.      used; 2 means it is allowed by default provided `-ansi' is not
  260.      used.  1 is the default; there is no need to define this macro in
  261.      that case.
  262. `NO_DOLLAR_IN_LABEL'
  263.      Define this macro if the assembler does not accept the character
  264.      `$' in label names.  By default constructors and destructors in
  265.      G++ have `$' in the identifiers.  If this macro is defined, `.' is
  266.      used instead.
  267. `NO_DOT_IN_LABEL'
  268.      Define this macro if the assembler does not accept the character
  269.      `.' in label names.  By default constructors and destructors in G++
  270.      have names that use `.'.  If this macro is defined, these names
  271.      are rewritten to avoid `.'.
  272. `DEFAULT_MAIN_RETURN'
  273.      Define this macro if the target system expects every program's
  274.      `main' function to return a standard "success" value by default
  275.      (if no other value is explicitly returned).
  276.      The definition should be a C statement (sans semicolon) to
  277.      generate the appropriate rtl instructions.  It is used only when
  278.      compiling the end of `main'.
  279. `HAVE_ATEXIT'
  280.      Define this if the target system supports the function `atexit'
  281.      from the ANSI C standard.  If this is not defined, and
  282.      `INIT_SECTION_ASM_OP' is not defined, a default `exit' function
  283.      will be provided to support C++.
  284. `EXIT_BODY'
  285.      Define this if your `exit' function needs to do something besides
  286.      calling an external function `_cleanup' before terminating with
  287.      `_exit'.  The `EXIT_BODY' macro is only needed if netiher
  288.      `HAVE_ATEXIT' nor `INIT_SECTION_ASM_OP' are defined.
  289. `INSN_SETS_ARE_DELAYED (INSN)'
  290.      Define this macro as a C expression that is nonzero if it is safe
  291.      for the delay slot scheduler to place instructions in the delay
  292.      slot of INSN, even if they appear to use a resource set or
  293.      clobbered in INSN.  INSN is always a `jump_insn' or an `insn'; GNU
  294.      CC knows that every `call_insn' has this behavior.  On machines
  295.      where some `insn' or `jump_insn' is really a function call and
  296.      hence has this behavior, you should define this macro.
  297.      You need not define this macro if it would always return zero.
  298. `INSN_REFERENCES_ARE_DELAYED (INSN)'
  299.      Define this macro as a C expression that is nonzero if it is safe
  300.      for the delay slot scheduler to place instructions in the delay
  301.      slot of INSN, even if they appear to set or clobber a resource
  302.      referenced in INSN.  INSN is always a `jump_insn' or an `insn'.
  303.      On machines where some `insn' or `jump_insn' is really a function
  304.      call and its operands are registers whose use is actually in the
  305.      subroutine it calls, you should define this macro.  Doing so
  306.      allows the delay slot scheduler to move instructions which copy
  307.      arguments into the argument registers into the delay slot of INSN.
  308.      You need not define this macro if it would always return zero.
  309. `MACHINE_DEPENDENT_REORG (INSN)'
  310.      In rare cases, correct code generation requires extra machine
  311.      dependent processing between the second jump optimization pass and
  312.      delayed branch scheduling.  On those machines, define this macro
  313.      as a C statement to act on the code starting at INSN.
  314. File: gcc.info,  Node: Config,  Next: Index,  Prev: Target Macros,  Up: Top
  315. The Configuration File
  316. **********************
  317.    The configuration file `xm-MACHINE.h' contains macro definitions
  318. that describe the machine and system on which the compiler is running,
  319. unlike the definitions in `MACHINE.h', which describe the machine for
  320. which the compiler is producing output.  Most of the values in
  321. `xm-MACHINE.h' are actually the same on all machines that GNU CC runs
  322. on, so large parts of all configuration files are identical.  But there
  323. are some macros that vary:
  324. `USG'
  325.      Define this macro if the host system is System V.
  326. `VMS'
  327.      Define this macro if the host system is VMS.
  328. `FAILURE_EXIT_CODE'
  329.      A C expression for the status code to be returned when the compiler
  330.      exits after serious errors.
  331. `SUCCESS_EXIT_CODE'
  332.      A C expression for the status code to be returned when the compiler
  333.      exits without serious errors.
  334. `HOST_WORDS_BIG_ENDIAN'
  335.      Defined if the host machine stores words of multi-word values in
  336.      big-endian order.  (GNU CC does not depend on the host byte
  337.      ordering within a word.)
  338. `HOST_FLOAT_WORDS_BIG_ENDIAN'
  339.      Define this macro to be 1 if the host machine stores `DFmode',
  340.      `XFmode' or `TFmode' floating point numbers in memory with the
  341.      word containing the sign bit at the lowest address; otherwise,
  342.      define it to be zero.
  343.      This macro need not be defined if the ordering is the same as for
  344.      multi-word integers.
  345. `HOST_FLOAT_FORMAT'
  346.      A numeric code distinguishing the floating point format for the
  347.      host machine.  See `TARGET_FLOAT_FORMAT' in *Note Storage Layout::
  348.      for the alternatives and default.
  349. `HOST_BITS_PER_CHAR'
  350.      A C expression for the number of bits in `char' on the host
  351.      machine.
  352. `HOST_BITS_PER_SHORT'
  353.      A C expression for the number of bits in `short' on the host
  354.      machine.
  355. `HOST_BITS_PER_INT'
  356.      A C expression for the number of bits in `int' on the host machine.
  357. `HOST_BITS_PER_LONG'
  358.      A C expression for the number of bits in `long' on the host
  359.      machine.
  360. `ONLY_INT_FIELDS'
  361.      Define this macro to indicate that the host compiler only supports
  362.      `int' bit fields, rather than other integral types, including
  363.      `enum', as do most C compilers.
  364. `EXECUTABLE_SUFFIX'
  365.      Define this macro if the host system uses a naming convention for
  366.      executable files that involves a common suffix (such as, in some
  367.      systems, `.exe') that must be mentioned explicitly when you run
  368.      the program.
  369. `OBSTACK_CHUNK_SIZE'
  370.      A C expression for the size of ordinary obstack chunks.  If you
  371.      don't define this, a usually-reasonable default is used.
  372. `OBSTACK_CHUNK_ALLOC'
  373.      The function used to allocate obstack chunks.  If you don't define
  374.      this, `xmalloc' is used.
  375. `OBSTACK_CHUNK_FREE'
  376.      The function used to free obstack chunks.  If you don't define
  377.      this, `free' is used.
  378. `USE_C_ALLOCA'
  379.      Define this macro to indicate that the compiler is running with the
  380.      `alloca' implemented in C.  This version of `alloca' can be found
  381.      in the file `alloca.c'; to use it, you must also alter the
  382.      `Makefile' variable `ALLOCA'.  (This is done automatically for the
  383.      systems on which we know it is needed.)
  384.      If you do define this macro, you should probably do it as follows:
  385.           #ifndef __GNUC__
  386.           #define USE_C_ALLOCA
  387.           #else
  388.           #define alloca __builtin_alloca
  389.           #endif
  390.      so that when the compiler is compiled with GNU CC it uses the more
  391.      efficient built-in `alloca' function.
  392. `FUNCTION_CONVERSION_BUG'
  393.      Define this macro to indicate that the host compiler does not
  394.      properly handle converting a function value to a
  395.      pointer-to-function when it is used in an expression.
  396. `HAVE_VPRINTF'
  397.      Define this if the library function `vprintf' is available on your
  398.      system.
  399. `MULTIBYTE_CHARS'
  400.      Define this macro to enable support for multibyte characters in the
  401.      input to GNU CC.  This requires that the host system support the
  402.      ANSI C library functions for converting multibyte characters to
  403.      wide characters.
  404. `HAVE_PUTENV'
  405.      Define this if the library function `putenv' is available on your
  406.      system.
  407. `NO_SYS_SIGLIST'
  408.      Define this if your system *does not* provide the variable
  409.      `sys_siglist'.
  410. `DONT_DECLARE_SYS_SIGLIST'
  411.      Define this if your system has the variable `sys_siglist', and
  412.      there is already a declaration of it in the system header files.
  413. `USE_PROTOTYPES'
  414.      Define this to be 1 if you know that the host compiler supports
  415.      prototypes, even if it doesn't define __STDC__, or define it to be
  416.      0 if you do not want any prototypes used in compiling GNU CC.  If
  417.      `USE_PROTOTYPES' is not defined, it will be determined
  418.      automatically whether your compiler supports prototypes by
  419.      checking if `__STDC__' is defined.
  420. `NO_MD_PROTOTYPES'
  421.      Define this if you wish suppression of prototypes generated from
  422.      the machine description file, but to use other prototypes within
  423.      GNU CC.  If `USE_PROTOTYPES' is defined to be 0, or the host
  424.      compiler does not support prototypes, this macro has no effect.
  425. `MD_CALL_PROTOTYPES'
  426.      Define this if you wish to generate prototypes for the `gen_call'
  427.      or `gen_call_value' functions generated from the machine
  428.      description file.  If `USE_PROTOTYPES' is defined to be 0, or the
  429.      host compiler does not support prototypes, or `NO_MD_PROTOTYPES'
  430.      is defined, this macro has no effect.  As soon as all of the
  431.      machine descriptions are modified to have the appropriate number
  432.      of arguments, this macro will be removed.
  433.      Some systems do provide this variable, but with a different name
  434.      such as `_sys_siglist'.  On these systems, you can define
  435.      `sys_siglist' as a macro which expands into the name actually
  436.      provided.
  437. `NO_STAB_H'
  438.      Define this if your system does not have the include file
  439.      `stab.h'.  If `USG' is defined, `NO_STAB_H' is assumed.
  440. `PATH_SEPARATOR'
  441.      Define this macro to be a C character constant representing the
  442.      character used to separate components in paths.  The default value
  443.      is.  the colon character
  444. `DIR_SEPARATOR'
  445.      If your system uses some character other than slash to separate
  446.      directory names within a file specification, define this macro to
  447.      be a C character constant specifying that character.  When GNU CC
  448.      displays file names, the character you specify will be used.  GNU
  449.      CC will test for both slash and the character you specify when
  450.      parsing filenames.
  451.    In addition, configuration files for system V define `bcopy',
  452. `bzero' and `bcmp' as aliases.  Some files define `alloca' as a macro
  453. when compiled with GNU CC, in order to take advantage of the benefit of
  454. GNU CC's built-in `alloca'.
  455.